/* Import Montserrat font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

/* ==================== MAIN NAVIGATION STYLING ==================== */

/* Bold text within menu links - for items that have <b> tags */
.menu-level-1 > li > a > b {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.5rem !important; /* Much larger text size */
    font-weight: 800 !important; /* Extra bold for main categories */
    position: relative !important;
    z-index: 1 !important;
}

/* Force bold styling for all text content in main menu items */
.menu-level-1 > li > a,
.menu-level-1 > li > a * {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Main navigation container styling */
.navigation-in.menu {
    font-family: 'Montserrat', sans-serif;
}

/* Level 1 menu items styling */
.menu-level-1 > li {
    margin-right: 2rem; /* Bigger gaps between main menu items */
}

.menu-level-1 > li:last-child {
    margin-right: 0; /* Remove margin from last item */
}

/* Hide submenu arrows on DESKTOP only, keep them on mobile for functionality */
@media (min-width: 769px) {
    .submenu-arrow {
        display: none !important;
    }
}

/* Hide submenu arrows on MOBILE too */
@media (max-width: 768px) {
    .submenu-arrow {
        display: none !important;
    }
}

/* Main menu links styling - applies to ALL menu items */
.menu-level-1 > li > a {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.5rem !important; /* Much larger text size */
    font-weight: 800 !important; /* Extra bold for all main menu items */
    padding: 1.2rem 2rem; /* Increased padding for better spacing */
    position: relative !important;
    overflow: hidden !important; /* Keep overflow hidden for gradient effect */
    text-decoration: none !important;
}

/* Desktop-only hover animations */
@media (min-width: 769px) {
    .menu-level-1 > li > a {
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }

    /* Sleek hover animation with custom gradient background slide - DESKTOP ONLY */
    .menu-level-1 > li > a::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important; /* Start hidden off to the left */
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(45deg, #197F98 0%, #00CDAC 100%) !important;
        transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        z-index: -1 !important;
    }

    /* Hover effects - DESKTOP ONLY without movement */
    .menu-level-1 > li > a:hover {
        color: white !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    }

    /* Only show gradient on hover */
    .menu-level-1 > li > a:hover::before {
        left: 0 !important; /* Slide in from left */
    }

    /* Keep hover state when submenu is open */
    .menu-level-1 > li:hover > a {
        color: white !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    }

    .menu-level-1 > li:hover > a::before {
        left: 0 !important; /* Keep gradient visible when submenu is open */
    }

    /* Active/focus states - DESKTOP ONLY */
    .menu-level-1 > li > a:focus,
    .menu-level-1 > li > a:active {
        outline: none !important;
    }
}

/* Level 2 submenu styling with bouncy slide-down animation - DESKTOP ONLY */
@media (min-width: 769px) {
    .menu-level-2 {
        font-family: 'Montserrat', sans-serif !important;
        margin-top: 1rem; /* Add gap between main menu and submenu */
        
        /* Layout properties - restore original full-width layout */
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
        padding: 1rem !important;
        width: 100% !important;
        
        /* Styling with curved corners - only bottom corners */
        background: white !important;
        border-radius: 0 0 20px 20px !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
        
        /* Initial hidden state - force override */
        opacity: 0 !important;
        transform: translateY(-30px) scale(0.9) !important;
        visibility: hidden !important;
        
        /* Animation properties */
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
        transform-origin: top center !important;
        pointer-events: none !important; /* Prevent interaction when hidden */
    }

    /* Blur background when submenu is active - DESKTOP ONLY */
    .menu-level-1 > li:hover::after {
        content: '' !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        backdrop-filter: blur(3px) !important;
        z-index: -1 !important;
        pointer-events: none !important;
        transition: backdrop-filter 0.3s ease !important;
    }

    /* Wider screens - 4 columns */
    @media (min-width: 1200px) {
        .menu-level-2 {
            grid-template-columns: repeat(4, 1fr) !important;
        }
    }

    /* Force initial state for all submenus - DESKTOP ONLY */
    .navigation-in .menu-level-2 {
        opacity: 0 !important;
        transform: translateY(-30px) scale(0.9) !important;
        visibility: hidden !important;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
        pointer-events: none !important;
    }

    /* Show submenu on hover with bouncy animation - DESKTOP ONLY */
    .menu-level-1 > li:hover > .menu-level-2,
    .menu-level-1 > li:focus-within > .menu-level-2,
    .navigation-in .menu-level-1 > li:hover .menu-level-2,
    .navigation-in .menu-level-1 > li:focus-within .menu-level-2,
    li.ext:hover .menu-level-2 {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: grid !important; /* Maintain grid layout when visible */
    }

    /* Additional bouncy effect for individual submenu items - DESKTOP ONLY */
    .menu-level-2 > li {
        transform: translateY(15px) !important;
        opacity: 0 !important;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    }

    /* Staggered animation for submenu items with stronger selectors - DESKTOP ONLY */
    .menu-level-1 > li:hover .menu-level-2 > li:nth-child(1),
    .navigation-in .menu-level-1 > li:hover .menu-level-2 > li:nth-child(1) { 
        transition-delay: 0.1s !important; 
    }
    .menu-level-1 > li:hover .menu-level-2 > li:nth-child(2),
    .navigation-in .menu-level-1 > li:hover .menu-level-2 > li:nth-child(2) { 
        transition-delay: 0.15s !important; 
    }
    .menu-level-1 > li:hover .menu-level-2 > li:nth-child(3),
    .navigation-in .menu-level-1 > li:hover .menu-level-2 > li:nth-child(3) { 
        transition-delay: 0.2s !important; 
    }
    .menu-level-1 > li:hover .menu-level-2 > li:nth-child(4),
    .navigation-in .menu-level-1 > li:hover .menu-level-2 > li:nth-child(4) { 
        transition-delay: 0.25s !important; 
    }
    .menu-level-1 > li:hover .menu-level-2 > li:nth-child(5),
    .navigation-in .menu-level-1 > li:hover .menu-level-2 > li:nth-child(5) { 
        transition-delay: 0.3s !important; 
    }
    .menu-level-1 > li:hover .menu-level-2 > li:nth-child(6),
    .navigation-in .menu-level-1 > li:hover .menu-level-2 > li:nth-child(6) { 
        transition-delay: 0.35s !important; 
    }
    .menu-level-1 > li:hover .menu-level-2 > li:nth-child(7),
    .navigation-in .menu-level-1 > li:hover .menu-level-2 > li:nth-child(7) { 
        transition-delay: 0.4s !important; 
    }
    .menu-level-1 > li:hover .menu-level-2 > li:nth-child(8),
    .navigation-in .menu-level-1 > li:hover .menu-level-2 > li:nth-child(8) { 
        transition-delay: 0.45s !important; 
    }
    .menu-level-1 > li:hover .menu-level-2 > li:nth-child(9),
    .navigation-in .menu-level-1 > li:hover .menu-level-2 > li:nth-child(9) { 
        transition-delay: 0.5s !important; 
    }

    /* Show submenu items when parent is hovered - DESKTOP ONLY */
    .menu-level-1 > li:hover .menu-level-2 > li,
    .menu-level-1 > li:focus-within .menu-level-2 > li,
    .navigation-in .menu-level-1 > li:hover .menu-level-2 > li,
    .navigation-in .menu-level-1 > li:focus-within .menu-level-2 > li {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
}

/* Level 2 menu items spacing */
.menu-level-2 > li {
    margin-bottom: 1.5rem; /* Bigger gaps between submenu items */
    padding: 0.5rem 0; /* Additional padding for better spacing */
}

.menu-level-2 > li:last-child {
    margin-bottom: 0; /* Remove margin from last submenu item */
}

/* Submenu links styling - make text much larger and bold */
.menu-level-2 > li > div > a,
.menu-level-2 > li > a {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.8rem !important; /* Much larger text for submenu */
    font-weight: 700 !important; /* Bold for submenu items */
    padding: 1rem 1.5rem; /* More padding for better click area */
}

/* Submenu spans styling - ensure all text is large and bold */
.menu-level-2 > li > div > a > span,
.menu-level-2 > li > a > span {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.8rem !important; /* Much larger text */
    font-weight: 700 !important; /* Bold text */
}

/* Force styling for ALL elements within submenu items */
.menu-level-2 > li > div > a,
.menu-level-2 > li > div > a *,
.menu-level-2 > li > a,
.menu-level-2 > li > a * {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
}

/* ==================== CUSTOM NAVIGATION ICONS ==================== */

/* Custom Navigation Icons with Gradient Colors */
.navigation-buttons {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

/* Hide default icons and replace with custom SVG */
.icon-search,
.icon-login,
.icon-cart {
    display: none !important;
}

/* Custom Search Icon */
.navigation-buttons a[data-target="search"]::before {
    content: '' !important;
    display: inline-block !important;
    width: 24px !important;
    height: 24px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23197F98' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    transition: all 0.3s ease !important;
}

.navigation-buttons a[data-target="search"]:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300CDAC' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") !important;
    transform: scale(1.1) !important;
}

/* Custom Login Icon */
.navigation-buttons a.login::before {
    content: '' !important;
    display: inline-block !important;
    width: 24px !important;
    height: 24px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23197F98' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    transition: all 0.3s ease !important;
}

.navigation-buttons a.login:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300CDAC' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") !important;
    transform: scale(1.1) !important;
}

/* Custom Cart Icon - Shopping Bag Design */
.navigation-buttons a[data-target="cart"]::before {
    content: '' !important;
    display: inline-block !important;
    width: 24px !important;
    height: 24px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23197F98' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2L3 6v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6l-3-4H6z'/%3E%3Cline x1='3' x2='21' y1='6' y2='6'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    transition: all 0.3s ease !important;
}

.navigation-buttons a[data-target="cart"]:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300CDAC' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2L3 6v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6l-3-4H6z'/%3E%3Cline x1='3' x2='21' y1='6' y2='6'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E") !important;
    transform: scale(1.1) !important;
}

/* Custom Hamburger Menu Icon - MOBILE ONLY */
@media (max-width: 768px) {
    .navigation-buttons a[data-target="navigation"]::before {
        content: '' !important;
        display: inline-block !important;
        width: 24px !important;
        height: 24px !important;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23197F98' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' x2='20' y1='6' y2='6'/%3E%3Cline x1='4' x2='20' y1='12' y2='12'/%3E%3Cline x1='4' x2='20' y1='18' y2='18'/%3E%3C/svg%3E") !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        transition: all 0.3s ease !important;
    }

    .navigation-buttons a[data-target="navigation"]:hover::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300CDAC' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' x2='20' y1='6' y2='6'/%3E%3Cline x1='4' x2='20' y1='12' y2='12'/%3E%3Cline x1='4' x2='20' y1='18' y2='18'/%3E%3C/svg%3E") !important;
        transform: scale(1.1) !important;
    }
}

/* Hide hamburger menu on desktop */
@media (min-width: 769px) {
    .navigation-buttons a[data-target="navigation"] {
        display: none !important;
    }
}

/* Enhanced button styling */
.navigation-buttons a {
    padding: 0.75rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.navigation-buttons a:hover {
    background: rgba(25, 127, 152, 0.1) !important;
    color: #19998C !important;
}

/* Hide screen reader text during icon replacement */
.navigation-buttons a .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ==================== NAVIGATION ACTIONS STYLING ==================== */

/* Navigation actions (login section) styling */
.navigationActions {
    font-family: 'Montserrat', sans-serif;
    margin-left: 2rem; /* Add gap between main menu and actions */
}

.navigationActions > li > a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem; /* Larger text */
    font-weight: 600; /* Semi-bold */
    padding: 1rem 1.5rem; /* More padding */
}

.navigationActions > li > a > span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Brands section specific styling */
#nav-manufacturers > a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

#nav-manufacturers > a > b {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

/* Brand submenu styling */
#nav-manufacturers .menu-level-2 > li > a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
}

#nav-manufacturers .menu-level-2 > li > a > span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
}

/* ==================== APPLE MENU ITEM SPECIAL STYLING ==================== */

/* Desktop-only hover effects for Apple menu item */
@media (min-width: 769px) {
    /* FORCE override the default gradient with blue to purple for Apple menu only */
    .menu-level-1 > .menu-item-external-15 > a::before {
        background: linear-gradient(45deg, #007AFF 0%, #5856D6 50%, #AF52DE 100%) !important;
    }

    /* Stronger selector to ensure Apple gets blue-purple gradient */
    .navigation-in .menu-level-1 > .menu-item-external-15 > a::before {
        background: linear-gradient(45deg, #007AFF 0%, #5856D6 50%, #AF52DE 100%) !important;
    }

    /* Keep hover state when submenu is open - Apple specific */
    .menu-item-external-15:hover > a {
        color: white !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    }

    .menu-item-external-15:hover > a::before {
        left: 0 !important; /* Keep Apple gradient visible when hovered */
        background: linear-gradient(45deg, #007AFF 0%, #5856D6 50%, #AF52DE 100%) !important;
    }
}

/* ==================== TOP NAVIGATION BAR DARK MODE ==================== */

/* Remove white line/gap above top navigation */
body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

html {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Top navigation bar dark mode styling */
.top-navigation-bar {
    background: #141D2B !important;
    color: #19998C !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}

/* Top navigation menu items - WHITE with original size */
.top-navigation-bar-menu li a,
.top-navigation-bar-menu-helper li a {
    color: white !important;
}

/* Více dropdown menu dark background */
.top-navigation-bar-menu-helper {
    background: #141D2B !important;
    border: 1px solid #333 !important;
}

/* "Více" trigger button styling */
.top-navigation-menu-trigger {
    color: #19998C !important;
}

/* Top navigation tools section */
.top-navigation-tools {
    color: #19998C !important;
}

/* Currency dropdown styling */
.top-navigation-tools .dropdown span {
    color: #19998C !important;
}

/* Currency dropdown button */
.top-navigation-tools .dropdown button {
    color: #19998C !important;
}

/* Login and registration links */
.top-nav-button-login,
.top-navigation-tools a[data-testid="headerSignup"] {
    color: #19998C !important;
}

/* ==================== SEARCH INPUT STYLING ==================== */

/* Search input container wrapper */
.search-input,
.query-input {
    background: white !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem 0.75rem 3rem !important; /* Extra left padding for icon */
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2319998C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") !important;
    background-position: 0.75rem center !important;
    background-repeat: no-repeat !important;
    background-size: 20px 20px !important;
}

/* Hide the overlapping search icon - Shoptet specific */
.search-input-icon {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Additional hiding for other potential search icons */
.search-input ~ .search-icon,
.query-input ~ .search-icon,
.search-input + .icon,
.query-input + .icon,
.search-input + svg,
.query-input + svg,
.search-input::before,
.query-input::before,
/* Shoptet specific selectors */
.search-input + .icon-search,
.query-input + .icon-search,
.search-input ~ .icon-search,
.query-input ~ .icon-search,
.search-input + .search-submit,
.query-input + .search-submit,
.search-input ~ .search-submit,
.query-input ~ .search-submit,
/* Parent container search icons */
.search-input-wrapper .icon-search,
.search-wrapper .icon-search,
.search-form .icon-search,
.form-search .icon-search,
/* Any icon next to search input */
input[type="search"] + *[class*="icon"],
input[type="search"] ~ *[class*="icon"],
.search-input + *[class*="icon"],
.query-input + *[class*="icon"],
/* More aggressive hiding - any element with search icon classes */
*[class*="search-icon"],
*[class*="icon-search"],
button[class*="search"],
.btn-search,
.search-btn,
/* Try hiding by position - elements positioned over the input */
.search-input + button,
.query-input + button,
.search-input + span,
.query-input + span,
.search-input + div,
.query-input + div {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Search input focus state */
.search-input:focus,
.query-input:focus {
    border-color: #19998C !important;
    box-shadow: 0 0 0 3px rgba(25, 153, 140, 0.1) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23197F98' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") !important;
}

/* Search input placeholder styling */
.search-input::placeholder,
.query-input::placeholder {
    color: #999 !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* ==================== MOBILE: DESIGN ENHANCEMENTS ==================== */

/* Mobile enhancements - remove underlines and add teal accents */
@media (max-width: 768px) {
    /* Remove underlines from main menu links */
    .menu-level-1 > li > a {
        text-decoration: none !important;
        border-bottom: none !important;
    }
    
    /* Remove underlines from all text inside main menu links */
    .menu-level-1 > li > a,
    .menu-level-1 > li > a *,
    .menu-level-1 > li > a > b,
    .menu-level-1 > li > a > span {
        text-decoration: none !important;
        border-bottom: none !important;
    }
    
    /* Remove underlines from submenu links */
    .menu-level-2 > li > a,
    .menu-level-2 > li > div > a {
        text-decoration: none !important;
        border-bottom: none !important;
    }
    
    /* Remove underlines from all text inside submenu links */
    .menu-level-2 > li > a *,
    .menu-level-2 > li > a > span,
    .menu-level-2 > li > div > a *,
    .menu-level-2 > li > div > a > span {
        text-decoration: none !important;
        border-bottom: none !important;
    }
    
    /* Remove underlines from navigation actions */
    .navigationActions > li > a,
    .navigationActions > li > a *,
    .navigationActions > li > a > span {
        text-decoration: none !important;
        border-bottom: none !important;
    }
    
    /* Remove underlines from all hover/focus/active states */
    .menu-level-1 > li > a:hover,
    .menu-level-1 > li > a:focus,
    .menu-level-1 > li > a:active,
    .menu-level-1 > li > a:visited,
    .menu-level-2 > li > a:hover,
    .menu-level-2 > li > a:focus,
    .menu-level-2 > li > a:active,
    .menu-level-2 > li > a:visited,
    .menu-level-2 > li > div > a:hover,
    .menu-level-2 > li > div > a:focus,
    .menu-level-2 > li > div > a:active,
    .menu-level-2 > li > div > a:visited {
        text-decoration: none !important;
        border-bottom: none !important;
    }
    
    /* ==================== TEAL ACCENT STYLING ==================== */
    
    /* Add teal accent to main menu items on mobile */
    .menu-level-1 > li > a {
        position: relative;
        padding-left: 1.5rem !important;
    }
    
    /* Teal accent line for main menu items */
    .menu-level-1 > li > a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 60%;
        background: linear-gradient(45deg, #19998C, #00CDAC);
        border-radius: 2px;
        opacity: 0.8;
    }
    
    /* Enhance teal accent on active/hover states */
    .menu-level-1 > li > a:hover::before,
    .menu-level-1 > li > a.active::before {
        opacity: 1;
        width: 5px;
        background: linear-gradient(45deg, #197F98, #00CDAC);
    }
    
    /* ==================== CUSTOM "MĚNA" STYLING ==================== */
    
    /* Target the currency (Měna) menu item specifically */
    .navigationActions > li.ext > a {
        background: linear-gradient(135deg, #19998C 0%, #00CDAC 100%) !important;
        color: white !important;
        border-radius: 8px !important;
        padding: 0.75rem 1rem !important;
        margin: 0.5rem 0.5rem !important; /* Smaller horizontal margins for wider buttons */
        font-weight: 600 !important;
        box-shadow: 0 2px 8px rgba(25, 153, 140, 0.2) !important;
        transition: all 0.3s ease !important;
        display: block !important; /* Allow full width within margins */
        width: auto !important;
    }
    
    /* Custom styling for currency text */
    .navigationActions > li.ext > a > span {
        color: white !important;
        font-weight: 600 !important;
    }
    
    /* Currency submenu arrow */
    .navigationActions > li.ext > a .submenu-arrow {
        color: white !important;
        opacity: 0.9 !important;
    }
    
    /* Currency hover effect */
    .navigationActions > li.ext > a:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(25, 153, 140, 0.3) !important;
        background: linear-gradient(135deg, #197F98 0%, #19998C 100%) !important;
    }
    
    /* ==================== CUSTOM "PŘIHLÁŠENÍ" STYLING ==================== */
    
    /* Target the login (Přihlášení) menu item specifically */
    .navigationActions > li:not(.ext) > a[data-testid="signin"],
    .navigationActions > li:not(.ext) > a[href*="login"] {
        background: white !important;
        color: #19998C !important;
        border: 2px solid #19998C !important;
        border-radius: 8px !important;
        padding: 0.75rem 1rem !important;
        margin: 0.5rem 0.5rem !important; /* Smaller horizontal margins for wider buttons */
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 8px rgba(25, 153, 140, 0.1) !important;
        display: block !important; /* Allow full width within margins */
        width: auto !important;
    }
    
    /* Login text styling */
    .navigationActions > li:not(.ext) > a[data-testid="signin"] > span,
    .navigationActions > li:not(.ext) > a[href*="login"] > span {
        color: #19998C !important;
        font-weight: 600 !important;
    }
    
    /* Login hover effect */
    .navigationActions > li:not(.ext) > a[data-testid="signin"]:hover,
    .navigationActions > li:not(.ext) > a[href*="login"]:hover {
        background: #19998C !important;
        color: white !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(25, 153, 140, 0.2) !important;
    }
    
    .navigationActions > li:not(.ext) > a[data-testid="signin"]:hover > span,
    .navigationActions > li:not(.ext) > a[href*="login"]:hover > span {
        color: white !important;
    }
    
    /* ==================== SUBMENU ACCENT STYLING ==================== */
    
    /* Add subtle teal accent to submenu items */
    .menu-level-2 > li > a,
    .menu-level-2 > li > div > a {
        position: relative;
        padding-left: 2rem !important;
    }
    
    /* Smaller teal dots for submenu items */
    .menu-level-2 > li > a::before,
    .menu-level-2 > li > div > a::before {
        content: '';
        position: absolute;
        left: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: #00CDAC;
        border-radius: 50%;
        opacity: 0.6;
    }
    
    /* Enhance submenu accent on hover */
    .menu-level-2 > li > a:hover::before,
    .menu-level-2 > li > div > a:hover::before {
        opacity: 1;
        background: #19998C;
        transform: translateY(-50%) scale(1.2);
    }
}